Skip to content
Joacim Breiler edited this page Apr 24, 2023 · 57 revisions

This wiki page is intended to provide various instructions on how to use Grbl. Please feel free to contribute and help keep this page up-to-date!

Getting Started (For New Users.)

After flashing Grbl to your Arduino, connecting to Grbl is pretty simple. You can use the Arduino IDE itself to connect to Grbl. Experiment or play with it, just to see if you like it. Other serial port programs, such as CoolTerm or PuTTY, work great too. The instructions are pretty much the same.

  • Open up the Arduino IDE and make sure your Arduino with Grbl is connected to your USB port.
  • Select the Arduino's Serial Port in the Tools menu, as you would normally with an Arduino.
  • Open up the 'Serial Monitor' window from the Tools menu.
  • If you are using Grbl v0.9 or later, make sure to change the baud rate from 9600 to 115200.
  • Once open, you should see a Grbl welcome message like Grbl v0.Xx ['$' for help]. This means all is good! You're connected!
  • Make sure you change the "No line ending" drop-down menu to "Carriage return". If you are using any other serial port program, you must do the same.
  • If you haven't received the welcome message or some garbled characters, make sure that the baud rate is set at 9600 (or 115200 for v0.9+).

From here, you can simply start sending Grbl some G-code commands, and it'll perform them for you. Or, you can type $ to get some help on what some of Grbl's special commands are or how to write some of your machine settings into Grbl's EEPROM memory.

When have started to feel comfortable with G-code/CNC and you're ready to run a whole G-code program, we recommend that you use one of the many great GUIs that users have written to stream your G-code programs to Grbl and to fully harness all of Grbl's capabilities.

NOTE: Check out ShapeOko's Wiki. It has the most up-to-date and comprehensive list of Grbl GUIs.

How to Stream G-Code Programs to Grbl

Focus - PC Based CNC Control System - https://www.sourcerabbit.com [Win, Mac, Linux]

screenshot_heightmap_original

CNC control software for 3 & 4-Axis CNC Mills, Routers, Lasers and Plasma Cutters running with the GRBL Firmware. It features a highly optimized and asynchronous (event-driven) UI and USB-to-Serial communication and can be also used on computers with small amounts of RAM and CPU.


bCNC Screenshot

An advanced fully featured g-code sender for GRBL. bCNC is a cross platform program (Windows, Linux, Mac) written in python with minimal external dependencies. The sender is robust and fast able to work nicely with old or slow hardware like Rasperry PI (As it was validated by the GRBL mainter on heavy testing).

Features:

  • simple and intuitive interface for small screens
  • importing g-code and dxf files
  • fast g-code sender (works nicely on RPi and old hardware)
  • workspace configuration (dialog for G54..G59 commands)
  • user configurable buttons
  • g-code function evaluation with run time expansion
  • Easy probing:
    • simple probing
    • center finder with a probing ring
    • auto leveling, Z-probing and auto leveling by altering the g-code during sending.
    • height color map display
    • manual tool change expansion and automatic tool length probing
  • Various Tools:
    • user configurable database of materials, endmills, stock
    • properties database of materials, stock, end mills etc..
    • basic CAM features (profiling, pocketing, drilling)
    • User g-code plugins:
      • bowl generator
      • finger joint box generator
      • simple spur gear generator
      • spirograph generator
      • surface flatten
      • ...
  • G-Code editor and display
    • graphical display of the g-code, and workspace
    • graphically moving and editing g-code
    • reordering code and rapid motion optimization
    • moving, rotating, mirroring the g-code
  • web pendant to be used via smart phones

Universal G-code Sender (UGS) [Java Cross-Platform]

UGS main window

A full-featured GUI, developed by @wwinder, that streams, visualizes G-code, and has complete control and feedback functionality for Grbl's higher level features. It's written in Java, which means it can be run on any Java-capable machine including the RaspberryPi! The Grbl group works closely with this project and highly recommend using this GUI. If you find any issues or would like to request more GUI features, @wwinder has done a wonderful job in completing many of the requests.

Version 2.0 of UGS is required for full GRBL v1.1 compatibility.


Easel [Browser-based CAD + CAM + Grbl controller]

Easel Screenshot

Easel is a web based project developed by Inventables specifically for use with X-Carve, Carvey + Grbl. It is an all-in-one package for design (including SVG imports), toolpath generation, and machine control. It also has an app store where 3rd party developers can make apps that can import into Easel. Documentation for how to make an app is here (https://discuss.inventables.com/c/easel/app-development). In addition to 2D design tools, Easel lets you preview your toolpaths in 3D before sending them to your machine. You can also import G-Code into Easel and use it as a sender. Easel is in constant development by the Inventables team. You can request features or report issues through the feedback button in the app or on the Inventables forum www.inventables.com/forum.


GRBLweb [Web Browser]

GRBLweb ui

GRBLweb is a web based GCODE sender and controller for GRBL. Multiple serial devices can be connected to control multiple machines.

There is also a pre-built Raspberry Pi image based on Raspbian running GRBLweb available here.


GrblPanel [Windows]

GrblPanel

Maintained by retired computer professional @gerritv, GrblPanel is a GUI that implements more advanced features and functionality commonly found in production machines like Haas, Fanuc, etc. All of the required tools for setting up and running a milling job are neatly arranged and designed to be easily accessible based on decades-old accepted workflows in machine shops. GrblPanel currently only works in Windows via .Net v4.5, but will eventually be updated for cross-platform use through Mono.


Candle [Windows/Linux]

screenshot_heightmap_original

GUI application for GRBL-based CNC-machines with G-Code visualizer.

Supported functions:

  • Controlling GRBL-based cnc-machine via console commands, buttons on form, numpad.
  • Monitoring cnc-machine state.
  • Loading, editing, saving and sending of G-code files to cnc-machine.
  • Visualizing G-code files.
  • Autoleveling Z-axis for PCB milling.

Python Streaming Scripts (Officially Supported by Grbl) [Cross-Platform]

NOTE: If you are having difficulties with streaming to Grbl, we will ask you to use this Python streaming script to eliminate the GUI you are using as the source of the issue. Before posting to the issues thread, please use this script to run your G-code program.

Included with the source code and officially supported by Grbl, two Python streaming scripts are supplied to illustrate simple and more complex streaming methods that work well cross-platform. These scripts don't fully support all of the Grbl's features, but are intended more as a way to compare or troubleshoot other garden variety or newly-written GUIs out there. These are located in the 'script' folder on the main repository. Note: The streaming scripts require the pySerial module installed.

  • Install the pySerial module.
  • Download simple_stream.py Python script.
  • Open the script in a plain text editor and change the following line to reflect your system:

s = serial.Serial('/dev/tty.usbmodem1811',9600)

  • In place of /dev/tty.usbmodem1811(Mac), you should put the serial port device name of your Arduino. This will be different for each machine and OS. For example, on a Linux system this would look like /dev/ttyACM0. Or on a Windows machine, this may look like COM3.
  • The script looks for and reads gcode from a file named grbl.gcode, you should create this file and put the gcode you want to execute in it. Or simply change this name in the script to your needs.
  • Open a terminal/command window and change directories to the location of the Python script and execute the Python script with the following command:

./simple_stream.py (Mac/Linux) python simple_stream.py (Windows)

  • You should now see the gcode being streamed to grbl along with 'ok' messages and your machine should begin moving.

The other, more advanced streaming script stream.py has command line arguments and does not require modifying the script itself, unlike simple_stream.py. The main difference is that stream.py uses a character counting scheme to ensure that Grbl's serial read buffer is full, which effectively creates another buffer layer on top of Grbl's internal motion queue. This allows for Grbl to access and parse the next G-code block immediately from the serial read buffer, rather than wait for the 'ok' send and response in the simple_stream.py script. This is very useful for motions, like curves, that have very rapid, short line segments in succession that may cause buffer starvation, which can lead to strange motion hiccups. In other words, it ensures a smoother motion. Use this script, if you are not afraid of command line or are experiencing weird motions.


Other GUIs

grblUI

A simple graphical user interface: https://github.com/jgeisler0303/grblUI. Programmed in Java, using rxtx for serial communication. Should theoretically run on Linux, Mac and Windows alike. Apparently some problems on Mac. Any feedback, tips and tricks appreciated (Issues or Wiki in grblUI). Check out the ready to use jar in the Downloads.

grblgui

A graphical G-Code Streamer: https://github.com/cody82/grblgui. Programmed in Java, using rxtx for serial communication and OpenGL 2.0 for rendering.

Notable features:

  • It displays the job duration and remaining time to complete in minutes.
  • It displays current speed.
  • You can toggle feed hold and enter G-Code commands.
  • It displays the buffer status graphically on the toolpath!

In development:

  • Simulate the milling process and display the resulting model.

CNCinfusion [Windows]

Currently under development in C# https://github.com/nm156/CNCInfusion

Gcode Sender [Windows]

https://github.com/downloads/OttoHermansson/GcodeSender/gcodesender.exe http://www.contraptor.org/forum/t-287260/gcode-sender-program

LaserGRBL [Windows]

Laser optimized GUI for Grbl http://lasergrbl.com

  • Simple & Minimal Interface designed for Grbl v1.1
  • jpg,bmp,png Image import (Image Vectorization, Grayscale Lines, Dithering 1bit)
  • 2D Graphic preview for engraving/cutting (with grayscale mapping)
  • Easy-To-Use Overrides control
  • User defined buttons, power to you!
  • Grbl Configuration Import/Export
  • Configuration, Alarm and Error codes decoding for Grbl v1.1 (with description tooltip)
  • Homing button, Feed Hold button, Resume button and Grbl Reset button
  • Job time preview and realtime projection
  • Jogging (for any Grbl version)
  • Feed overrides (for Grbl > v1.1) with easy-to-use interface
  • Multilangual: english, italian, german, french, spanish, danish and brazilian

LaserGRBL_preview

Image2GCode [Windows]

image2gcode is a free open source program for Windows designed to generate G-code from raster images for laser and nichrome burners.

https://www.image2gcode.ru

image2gcode v3.x

GRBL-Plotter [Windows]

https://github.com/svenhb/GRBL-Plotter

  • Check videos on YouTube 'GRBL-Plotter'
  • Supporting GRBL 1.1 (and 0.9 also)
  • Import/creation and conversion into GCode
    • from SVG and DXF Graphics
    • from Images
    • from Eagle Drill file
    • from Text (into Hershey Font)
    • conversion of the Z-Dimension into Z-axis (router) or Spindle on/off (laser) or Spindle-Speed (RC-Servo PWM)
  • Export / import machine specific settings (Joystick, Buttons)
  • Controlling a 2nd GRBL-Hardware
  • Tool exchange Video
  • User defined Buttons
  • Joystick like control
  • GamePad support

Screenshot of Main GUI
GRBL-Plotter GUI

Grbl Overseer [Multiplatform Desktop + Android]

Touch-friendly user interface with multiple jobs scheduling

  • Simple, easy to use, touch-friendly user interface
  • 3D view of jobs and current tool position
  • Schedule multiple jobs, each has its specified origin
  • Automatically executes a simulation run before production, and compiles all errors
  • Adaptative jog controls (the longer you press, the faster it goes)
  • Smart serial console, GRBL message / responses are grouped with the corresponding command
  • Smart top bar, always showing the current GRBL status. Background color changes with status to allow easy state reading even far from the device
  • Built-in editor for GRBL configuration
  • Multiplatform (tested on Windows, Linux and Android)
  • Support USB / serial interface on > Android 3.1 devices with USB API
  • Support Grbl >= v1.1

Screenshot :

Grbl Overseer screenshot

Developement is still ongoing, please report any issue you encounter

Grbl Controller [Android Mobile Application]

Compact user interface even for small screen mobile

  • Support Grbl >= v1.1
  • Supports real time overrides, feed rate, spindle speed, and toggle coolant.
  • Real time machine position, feed, buffer state reporting. (you need to enable buffer data in status report via $10=2)
  • Supports Sending G-Code files from mobile. (supported extensions are .gcode .nc and .tap)
  • Supports short text commands.
  • Auto adjusts Z-Axis on work surface using G38.3 probing.
  • Highly Configurable 4 Custom Buttons.

Axis Control File Streaming


Serial Emulators:

Other than CoolTerm or PuTTY, Linux and Mac systems have a great lightweight serial emulator called screen that's either built in or easily installable (apt-get install screen) through the terminal interface.

If your device is connected on /dev/ttyACM0 (for Mac, /dev/tty.usbxxxx), type screen /dev/ttyACM0 115200 to connect to the device at 115200 baud. There you'll be connected to Grbl. To exit

To get out of the screen interface, simply press Ctrl-a followed by a k.


Diba controller [windows]

screenshot

GUI application for GRBL 0.9J with 2D G-Code visualizer. Contact us : diba.team2017@gmail.com download : Diba controller 2.5.01

Zen Toolworks Controller (Zen CNC) (Under heavy development)

Contact Us: info@zencnc.com

This application is currently only available on Windows Platform, (Windows 7 and 10 Tested)

The GUI provide very basic functions, such as Digital Read Out, Position Set To and Move To. X, Y and Z Jogging, Zero and Homing. Easy Grbl Parameter Editing.

All other functions are based on Plugin Architecture. You can basically extend the functionality by defining your own panels and buttons.

Zen Toolworks also developed a Grbl Test Board, which can be used combined with our Zen CNC Application to test all features provided by Grbl.

ZenCNC Wiki Page


Grbl4P: gui implemented in Processing 3

Grbl4P screen shot

Front end gui panel interface to grbl, within the Processing 3 framework.
Supports g-code file streaming and mouse/keyboard interaction.

Written to enable easy extensions for Java and/or Scala development of tightly coupled motion Control apps.

All code provided is java, using only the Processing 3 included IDE. All GUI controls are from the Processing G4P Library, and were created with the G4P GUI Builder tool.